home *** CD-ROM | disk | FTP | other *** search
/ NASA Climatology Interdisciplinary Data Collection / NASA Climatology Interdisciplinary Data Collection - Disc 4.iso / cdrom.gui < prev    next >
Text File  |  1998-04-06  |  12KB  |  260 lines

  1. #  cdrom.gui - last revision: Jan 16, 1998
  2. #
  3. #  Sample widget script for the CIDC CDROM.
  4. #
  5. #  How to invoke this script:
  6. #
  7. #  At startup. Set the enviroment variable GAGUI with the
  8. #  name of the script file, e.g., 
  9. #
  10. #  % setenv GAGUI cdrom.gui
  11. #
  12. #  At the GrADS command line prompt. Simply type
  13. #
  14. #  ga> gui cdrom.gui
  15. #
  16. #  Of course, you must have a version of GrADS built with
  17. #  Athena Widgets support.
  18. #
  19. #  (c) 1997 Arlindo da Silva   (dasilva@gsfc.nasa.gov)
  20. #
  21. #              *** Copy freely but DO NOT sell ***
  22. #
  23. #  See also sample.gui.
  24. #.........................................................................
  25.  
  26. #  Most "exec" commands are supported
  27. #  ----------------------------------
  28.    set gxout shaded
  29.  
  30. # A "label" is an inactive widget which display some text, 
  31. # e.g., an informative  title. The first argument, "root"
  32. # in this case, is the name you give to the widget so that
  33. # you can refer to it later on
  34. # -------------------------------------------------------
  35.   MakeLabel(root,"CIDC CDROM VI")
  36.  
  37. # This command creates a dropdown menu called " File... "
  38. # as usual, the first argument "file" is the name of the
  39. # widget
  40. # -------------------------------------------------------
  41.   MakeMenu ( file, "File" )
  42.  
  43. # Once you make a memu, you create its items. For the first item:
  44. # --------------------------------------------------------------
  45.       MakeMenuItem(open, file, "Open", Load, "open")
  46.  
  47. # The parameters this particular item are:
  48. #     open    the name of the item widget
  49. #     file    the menu the item belongs to (see MakeMenu above)
  50. #     "Open"  This is the text it displays on the screen
  51. #     Load    this is the callback name, i.e., the widget invokes
  52. #             this function when pressed. This particular callback
  53. #             pops up a "file finder" widget, and after the user
  54. #             clicks on a file name it executes the grads command
  55. #             "open" (see last argument) on this file. A list
  56. #             of the other available callbacks can be found in the
  57. #             end of this file.
  58. #     "open"  Argument to be passed to the callback. In this 
  59. #             particular case, it is the GrADS command to be
  60. #             executed on the file.
  61. #  The definition of the other items in this menu follows.
  62.       MakeMenuItem(fsel, file, "File Selection ", FileSel, NULL )
  63.       MakeMenuItem(browse, file, "View Text File", Browse, NULL)
  64.       MakeMenuItem(junk, file, "_______________", NULL, NULL )
  65.       MakeMenuItem(exec, file, "Exec", Load, "exec")
  66.       MakeMenuItem(run, file, "Run", Load, "run")
  67.       MakeMenuItem(gui, file, "GUI", Load, "gui")
  68.       MakeMenuItem(junk, file, "_______________", NULL, NULL )
  69.       MakeMenuItem(init, file, "Reinit", Cmd, "reinit")
  70.       MakeMenuItem(exit, file, "Exit", Cmd, "quit")
  71.  
  72. # A menu with assorted internal options
  73. # -------------------------------------
  74.   MakeMenu ( options, "Options" )
  75.       MakeMenuItem(map, options, "Continental Boundaries on/off",  CmdStr, "set mpdraw " )
  76.       MakeMenuItem(tit, options, "Draw Title", CmdStr, "draw title " )
  77.       MakeMenuItem(cbar, options, "Color Bar", Cmd, "run cbarn" )
  78.       MakeMenuItem(junk, options, "_______________", NULL, NULL )
  79.       MakeMenuItem(shade, options, "Shaded", Cmd, "set gxout shaded" )
  80.       MakeMenuItem(cont, options, "Contour", Cmd, "set gxout contour" )
  81.       MakeMenuItem(grfill, options, "Grid Fill", Cmd, "set gxout grfill" )
  82.       MakeMenuItem(grvals, options, "Grid Values", Cmd, "set gxout grid" )
  83.       MakeMenuItem(vec, options, "Vector", Cmd, "set gxout vector" )
  84.       MakeMenuItem(line, options, "Line Plot", Cmd, "set gxout line" )
  85.       MakeMenuItem(bar, options, "Bar Chart", Cmd, "set gxout bar" )
  86.  
  87. # Creates simple buttons. Buttons work pretty much like menu items
  88. # but they do not belong to any menu and are directly clickable.
  89. # ------------------------------------------------------------------
  90.   MakeButton( clear, "Clear", Cmd, "clear" )
  91.   MakeButton( quit, "Quit", Cmd, "quit" )
  92.   MakeButton( prompt, "ga>", CmdWin, NULL )
  93.  
  94. # A menu for defining GrADS dimensions. This is very crude right now.
  95. # I will be developing a specific callback with rubber bands
  96. # etc. for these functions. Stay tuned. 
  97. # ------------------------------------------------------------------
  98.   MakeMenu( dim, "Dim")
  99.       MakeMenuItem(lat, dim, "Latitude", CmdStr, "set lat " )
  100.       MakeMenuItem(lon, dim, "Longitude", CmdStr, "set lon " )
  101.       MakeMenuItem(time, dim, "Time", CmdStr, "set time " )
  102.       MakeMenuItem(junk, dim, "_________", NULL, NULL )
  103.       MakeMenuItem(x, dim, "x", CmdStr, "set x " )
  104.       MakeMenuItem(y, dim, "y", CmdStr, "set y " )
  105.       MakeMenuItem(z, dim, "z", CmdStr, "set z " )
  106.       MakeMenuItem(t, dim, "t", CmdStr, "set t " )
  107.  
  108. # Frequently used buttons (and toggle)
  109. # -----------------------------------
  110.   MakeButton( var, "Var", VarSel, NULL )
  111.   MakeToggle( hold, "Hold", FALSE, NULL, Toggle, "hold" )
  112.   MakeButton( prev, " << ", Display, "<<" )
  113.   MakeButton( displ, "Display", Display, "DISPLAY" )
  114.   MakeButton( next, " >> ", Display, ">>" )
  115.   MakeButton( rein, "Reinit", Cmd, "reinit")
  116.   MakeButton( fresh, "Fresh", Cmd, "  ")
  117.  
  118.  
  119. # CIDC CD-ROM I menu's
  120. # -------------
  121.   MakeMenu(tsl, "TOVS Single-Level Parameters")
  122.       MakeMenuItem(tsrf, tsl, "Surface Skin Temperature",  Open, "open data/tovs_atmo_sound/tsurf/tovsnf.tsurf.1pmegg.ctl" )      
  123.       MakeMenuItem(fcld, tsl, "Cloud Fraction",  Open, "open data/tovs_atmo_sound/fcld/tovsnf.fcld.1pmegg.ctl" )   
  124.       MakeMenuItem(pcld, tsl, "Cloud Top Pressure",  Open, "open data/tovs_atmo_sound/pcld/tovsnf.pcld.1pmegg.ctl" )   
  125.       MakeMenuItem(tcld, tsl, "Cloud Top Temperature",  Open, "open data/tovs_atmo_sound/tcld/tovsnf.tcld.1pmegg.ctl" )    
  126.       MakeMenuItem(olr, tsl, "Outgoing Longwave Radiation",  Open, "open data/tovs_atmo_sound/olr/tovsnf.olr.1pmegg.ctl" )    
  127.       MakeMenuItem(lwf, tsl, "Longwave Cloud Radiative Forcing",  Open, "open data/tovs_atmo_sound/lwf/tovsnf.lwf.1pmegg.ctl" )   
  128.       MakeMenuItem(prc, tsl, "Precipitation Estimate",  Open, "open data/tovs_atmo_sound/prc/tovsnf.prc.1pmegg.ctl" )   
  129.       MakeMenuItem(sprc, tsl, "Surface Pressure",  Open, "open data/tovs_atmo_sound/sprc/tovsnf.sprc.1pmegg.ctl" )   
  130.  
  131.   MakeMenu(tml, "TOVS Multi-Layer Parameters")
  132.       MakeMenuItem(cltmp, tml, "Mean Temperature for Four Layers",  Open, "open data/tovs_atmo_sound/cltemp/tovsnf.cltemp.4pmegg.ctl" )      
  133.       MakeMenuItem(prwat, tml, "Precipitable Water at Five Levels",  Open, "open data/tovs_atmo_sound/prwat/tovsnf.prwat.5pmegg.ctl" )   
  134.       MakeMenuItem(fcld7, tml, "Cloud Fraction for Seven Layers",  Open, "open data/tovs_atmo_sound/fcld7/tovsnf.fcld7.7pmegg.ctl" )   
  135.  
  136. MakeButton(help, "Help", Browse, software/grads/help.txt)
  137.  
  138. # Once you define buttons and menus you may want to enforce their
  139. # relative position. The very first button is always placed at the
  140. # upper left corner.
  141. # ----------------------------------------------------------------
  142.  
  143.   # First row 
  144.   SetWidgetPos(file, PLACE_UNDER, root, NO_CARE, NULL)
  145.   SetWidgetPos(options, PLACE_UNDER, root, PLACE_RIGHT, file )
  146.   SetWidgetPos(dim, PLACE_UNDER, root, PLACE_RIGHT, options )
  147.   SetWidgetPos(prompt, PLACE_UNDER, root, PLACE_RIGHT, dim )
  148.   SetWidgetPos(help, PLACE_UNDER,   root, PLACE_RIGHT, prompt)
  149.  
  150.   # Second row
  151.   SetWidgetPos(tsl, PLACE_UNDER, file, NO_CARE, NULL)
  152.     
  153.   # Third row
  154.   SetWidgetPos(tml, PLACE_UNDER, tsl, NO_CARE, NULL)
  155.   
  156.   # Forth row
  157.   SetWidgetPos(fresh, PLACE_UNDER, tml, NO_CARE, NULL )
  158.   SetWidgetPos(var, PLACE_UNDER, tml, PLACE_RIGHT, fresh )
  159.   SetWidgetPos(prev, PLACE_UNDER, tml, PLACE_RIGHT, var )
  160.   SetWidgetPos(displ, PLACE_UNDER, tml, PLACE_RIGHT, prev )
  161.   SetWidgetPos(next, PLACE_UNDER, tml, PLACE_RIGHT, displ )
  162.  
  163.   # Fith row
  164.   SetWidgetPos(hold, PLACE_UNDER, fresh, NO_CARE, NULL )
  165.   SetWidgetPos(clear, PLACE_UNDER, fresh, PLACE_RIGHT, hold)
  166.   SetWidgetPos(rein, PLACE_UNDER, fresh, PLACE_RIGHT, clear )
  167.   SetWidgetPos(quit, PLACE_UNDER, fresh, PLACE_RIGHT, rein )
  168.  
  169. # In order to make your widgets appear on the screen you *must*
  170. # issue this command.
  171. # -------------------------------------------------------------
  172.   ShowDisplay()
  173.  
  174. # After your widgets appear on the screen, you can set the color 
  175. # of your widgets. The following colors are pre-defined:
  176. # white, back, red, green, blue, yellow.
  177. # --------------------------------------------------------------
  178.   GetNamedColor(gray,"grey")
  179.   GetNamedColor(Blue,"LightSkyBlue")
  180.   GetNamedColor(Green,"Green")
  181.   GetNamedColor(pink,"gold")         # pink is actually gold, get it?
  182.   AllFgColor(black)
  183.   AllBgColor(Blue)
  184.   SetBgColor(root,white)
  185.   SetFgColor(root,red)
  186.   SetBgColor(file,green)
  187.   SetBgColor(options,green)
  188.   SetBgColor(dim,green)
  189.   SetFgColor(prompt,yellow)
  190.   SetBgColor(prompt,red)
  191.   SetFgColor(help,yellow)
  192.   SetBgColor(help,red)
  193.   SetBgColor(prev,pink)
  194.   SetBgColor(displ,pink)
  195.   SetBgColor(next,pink)
  196.   SetBgColor(play,pink)
  197.   SetBgColor(fresh,pink)
  198.   SetBgColor(var,pink)
  199.   SetBgColor(hold,gray)
  200.   SetBgColor(clear,gray)
  201.   SetBgColor(reset,gray)
  202.   SetBgColor(rein,gray)
  203.   SetBgColor(quit,gray)
  204.  
  205. # And you must call this function at the end of your first GUI script.
  206. # This instructs the X Toolkit to enter an infinite loop, monitoring
  207. # keyboard and mouse events. Repeating: you *must* call MainLoop().
  208. # -------------------------------------------------------------------
  209.   MainLoop()
  210.  
  211. #........................................................................
  212. #
  213. # APPENDIX: Currently available callback functions
  214. #
  215. #     Browse    Opens a text file, such as a help file, on a separate
  216. #               window.
  217. #     Cmd       Executes a generic GrADS command
  218. #     CmdStr    Like Cmd, but the user is prompted for an additional
  219. #               string to be appended to the GrADS command.
  220. #     CmdWin    Invokes a window for GrADS command line interface.
  221. #               User can click on past commands from a list.
  222. #     CmdLine   Invokes the standard GrADS command line interface.
  223. #               When the command line is active the other widgets
  224. #               are not available (may be fixed in the future).
  225. # CloseWindow   Closes the current window (do not use for your primary
  226. #               window or you will get stuck).
  227. #     Display   A generic callback for displaying the current variable
  228. #               (or expression) set with VarSel. The options are:
  229. #                  <<    decrements time and executes display
  230. #                 PLAY   starts animation from current to last time
  231. #                DISPLAY just executes display
  232. #                  >>    increments time and  executes display
  233. #               If the "hold" toggle state is OFF (the default),
  234. #               the screen is cleared before displaying.
  235. #     Edit      Like browse, but the user can edit the file. This simple
  236. #               text editor is integrated with GrADS, providing a very
  237. #               elementary Integrated Development Enviroment (IDE) for
  238. #               GrADS scripts. In particular, the script being edited
  239. #               can be executed by clicking on a button (not
  240. #               implemented yet).
  241. #     FileSel   Pops up a scrollable list and asks the user to selected
  242. #               a file among the currently opened GrADS files (including
  243. #               SDFs). The selected file becomes the default.
  244. #     Load      Pops up a "file finder" widget, and after the user
  245. #               clicks on a file name it executes a GrADS command
  246. #               specified as the last argument. In case of "open" or 
  247. #               "sdfopen" the files becomes the default, and the
  248. #               user is asked to select a variable from this file.
  249. #     Open      Similar to Load, but the file name must be specified.
  250. #     Toggle    Turn internal options ON/OFF. The only internal
  251. #               option currently supported is "hold". This callback is
  252. #               usually used with MakeToggle(), see example above.
  253. #     VarSel    Pops up a scrollable list and asks the user to selected
  254. #               a variable from the default file. The user can also
  255. #               type a generic GrADS expression instead of selecting
  256. #               a single variable.
  257. #     NULL      Does not do anything, used for inactive buttons.
  258. #
  259. #........................................................................
  260.